home *** CD-ROM | disk | FTP | other *** search
- /* The else-if statement. */
- using System;
-
- namespace Chapter2 {
- class Class1 {
- static void Main() {
- string input;
- double Answer;
-
- Console.Write("1 + 1.5 = ");
- input = Console.ReadLine();
- Answer = double.Parse(input);
-
- if (Answer == 2.5)
- Console.WriteLine("\n That is correct!");
- else if (Answer > 2.5)
- Console.WriteLine("\n Wrong, too high!!!");
- else if (Answer < 2.5)
- Console.WriteLine("\n Wrong, too low!!!");
- }
- }
- }
-
-